home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000378_jaltman@columbia.edu_Mon Feb 18 09:55:05 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  49 lines

  1. Article: 13223 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: jaltman@columbia.edu (Jeffrey Altman)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: File transfer.
  6. Date: 18 Feb 2002 09:09:52 -0500
  7. Organization: Columbia University
  8. Lines: 32
  9. Message-ID: <a4r1vg$t7k$1@ciao.cc.columbia.edu>
  10. References: <e3e8d998.0202180545.67e4c429@posting.google.com>
  11. NNTP-Posting-Host: ciao.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1014041393 11396 128.59.59.11 (18 Feb 2002 14:09:53 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 18 Feb 2002 14:09:53 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13223
  16.  
  17. In article <e3e8d998.0202180545.67e4c429@posting.google.com>,
  18. igor <tagws@infosky.net> wrote:
  19. : How can I transfer a file from barcode terminal connected to the
  20. : serial port of my PC to the server where my app is runing. Request
  21. : must come from Linux server.
  22. : My PC is running K95, barcode terminal is running DOS Kermit, on Linux
  23. : server I can run C-Kermit from my app. PC is connecting to server over
  24. : K95 terlnet.
  25.  
  26. Disable automatic file transfer in K95.  
  27.  
  28.   SET TERMINAL AUTODOWNLOAD OFF
  29.  
  30. Configure the serial port on the PC to be used for Bidirectional printing.
  31.  
  32.   SET PRINTER /DOS:COM1 /SPEED:19200 /FLOW:RTS /BIDI
  33.  
  34. Turn on copy print mode in order for all output from the Linux Server
  35. to be sent to the printer device
  36.  
  37.   SET TERMINAL PRINT COPY
  38.  
  39. Start the file transfer from C-Kermit as it will now be communicating with
  40. the barcode terminal.
  41.  
  42.  
  43. -- 
  44.  Jeffrey Altman * Sr.Software Designer      C-Kermit 8.0 available now!!!
  45.  The Kermit Project @ Columbia University   includes Telnet, FTP and HTTP
  46.  http://www.kermit-project.org/             secured with Kerberos, SRP, and 
  47.  kermit-support@columbia.edu                OpenSSL. Interfaces with OpenSSH
  48.